summaryrefslogtreecommitdiffstats
path: root/src/video_core/control/channel_state_cache.cpp
blob: ec7ba907cabfdfe331616c9f20a16c4d761f0e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "video_core/control/channel_state_cache.inc"

namespace VideoCommon {

ChannelInfo::ChannelInfo(Tegra::Control::ChannelState& channel_state)
    : maxwell3d{*channel_state.maxwell_3d}, kepler_compute{*channel_state.kepler_compute},
      gpu_memory{*channel_state.memory_manager} {}

template class VideoCommon::ChannelSetupCaches<VideoCommon::ChannelInfo>;

} // namespace VideoCommon